home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / CNUMBERE / CTESTPAN.H < prev    next >
Text File  |  1991-07-04  |  547b  |  22 lines

  1. /* Interface for CTestPane.h    */
  2.  
  3. #define _H_CTestPane            
  4. #include "CStarterPane.h"
  5. #include "CNumberEditor.h"
  6.  
  7. struct CTestPane : CStarterPane {
  8.     
  9.     double            doubleNum1, doubleNum2;
  10.     long            longNum;
  11.     Str255            itsString;
  12.     
  13.     CNumberEditor    *doubleNum1Editor, *doubleNum2Editor, *longNumEditor, *stringEditor;
  14.                                     
  15.     void            IStarterPane(CView *anEnclosure, CBureaucrat *aSupervisor,
  16.                             short aWidth, short aHeight,
  17.                             short aHEncl, short aVEncl,
  18.                             SizingOption aHSizing, SizingOption aVSizing);
  19.  
  20.     void            DoCommand(long    theCommand);
  21. };
  22.